
    /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Open Sans', sans-serif;
      line-height: 1.6;
      color: #222;
      background-color: #f8f9fa;
    }
    /* Container */
    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }
    /* Header */
    .site-header {
      background: #fff;
      border-bottom: 1px solid #ddd;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: .4rem 0;
    }
    .nav ul {
      display: flex;
      gap: 1.2rem;
      list-style: none;
      align-items: center;
    }
    .nav a {
      text-decoration: none;
      color: #c00;
      font-weight: bold;
    }
    .btn-outline {
      border: 2px solid #c00;
      padding: .4rem .8rem;
      border-radius: 0px;
    }
    .logo img {
      max-height: 70px;
    }

    /* Pricelist Styles */
    .pricelist-section {
      padding: 3rem 0;
    }
    .pricelist-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .pricelist-header h1 {
      font-size: 2.5rem;
      color: #c00;
      margin-bottom: 0.5rem;
    }
    .pricelist-header p {
      color: #666;
    }
    .section-title {
      font-size: 2rem;
      color: #c00;
      margin-bottom: 1.5rem;
      border-bottom: 2px solid #eee;
      padding-bottom: 0.5rem;
    }
    .subsection-title {
        font-size: 1.5rem;
        color: #333;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .pricelist-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .product-card {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    .product-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .product-card-content {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .product-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .product-card .price-display, .product-card .static-price {
        font-size: 1.75rem;
        font-weight: bold;
        color: #222;
        margin-top: auto; /* Pushes price to the bottom */
        padding-top: 1rem;
    }
    .product-card .price-unit {
        font-size: 1rem;
        color: #666;
    }
    .btn-pesan {
        display: block;
        background: #c00;
        color: #fff;
        text-align: center;
        padding: .75rem;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 1rem;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .btn-pesan:hover {
        background: #a00;
    }
    
    /* Tombol Density */
     .density-description {
        font-size: 0.875rem;
        color: #666;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }
    .density-options {
        display: flex;
        gap: 0.5rem;
        margin: 0.75rem 0;
    }
    .density-btn {
        border: 1px solid #ddd;
        padding: 0.25rem 0.75rem;
        border-radius: 15px;
        font-size: 0.875rem;
        cursor: pointer;
        background: #fff;
        transition: all 0.2s;
    }
    .density-btn.active {
        background-color: #c00;
        color: white;
        border-color: #c00;
    }
    .density-btn:not(.active):hover {
        background-color: #f4f4f4;
    }

    /* Grafir Details */
    .grafir-details {
        margin: 0.75rem 0;
        font-size: 0.9rem;
        flex-grow: 1;
    }
     .grafir-details p {
        margin-bottom: 0.25rem;
     }

    /* Syarat & Ketentuan */
    .terms-section {
        margin-top: 3rem;
        background: #fff;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    .terms-section h2 {
        text-align: center;
        font-size: 1.8rem;
        color: #c00;
        margin-bottom: 1.5rem;
    }
    .terms-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .terms-grid h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    .terms-grid ul {
        list-style: disc;
        padding-left: 1.2rem;
    }
    .terms-grid li {
        margin-bottom: 0.5rem;
    }
    .highlight-note {
        background: #fffbe6;
        padding: 0.75rem;
        border-radius: 5px;
        border-left: 3px solid #f59e0b;
    }
    
    /* Footer */
    p a {
      color: #fff;
      text-decoration: underline;
      text-decoration-color: #fff;
    }
    .site-footer {
      background: #222;
      color: #fff;
      padding: 2rem 0 0;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 1rem;
    }
    .footer-col h3 {
      margin-bottom: .5rem;
    }
    .footer-bottom {
       background-color: #c00;
  padding-top: .10rem;
  font-size: .9rem;
   text-align: center; /* bikin semua isi di tengah */ 
    }
    .footer-middle {
        padding: 1rem;
        font-size: .9rem;
        text-align: center;
        border-top: 1px solid #444;
        border-bottom: 1px solid #444;
    }
    .footer-middle nav {
      display: flex;
      justify-content: center;
      gap: 2rem;
    }
    .footer-middle nav a {
      color: #fff;
      text-decoration: none;
    }
    .footer-bottom p {
        padding: 0.5rem;
    }

    /* Floating WhatsApp Button */
    .wa-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        background: #c00;
        color: #fff;
        border-radius: 50%;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }
    .wa-float:hover {
      transform: scale(1.1);
    }
    .wa-float img {
      width: 45px;
      height: 45px;
    }

    /* Hamburger */
    .hamburger {
        font-size: 1.8rem;
        background: none;
        border: none;
        color: #c00;
        cursor: pointer;
        display: none;
    }

    /* Responsive */
    @media(max-width: 992px) {
        .pricelist-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
    }
    @media(max-width: 768px) {
      .hamburger {
        display: block;
      }
      .nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        width: 200px;
        padding: 1rem;
        border: 1px solid #ddd;
        display: none;
        flex-direction: column;
        gap: 1rem;
        text-align: right;
        z-index: 999;
      }
      .nav.active {
        display: flex;
      }
      .nav ul {
        flex-direction: column;
        align-items: flex-end;
      }
      .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .terms-grid {
        grid-template-columns: 1fr;
      }
    }